home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1994 June / PC Plus Super CD coverdisc Issue 93 June 1994.iso / suprdisk / mditool / mdidialg.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-05-31  |  1.6 KB  |  58 lines

  1. VERSION 2.00
  2. Begin Form Form2 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "Form2"
  5.    ClientHeight    =   1785
  6.    ClientLeft      =   1605
  7.    ClientTop       =   2130
  8.    ClientWidth     =   3795
  9.    ControlBox      =   0   'False
  10.    Height          =   2190
  11.    Left            =   1545
  12.    LinkTopic       =   "Form2"
  13.    ScaleHeight     =   1785
  14.    ScaleWidth      =   3795
  15.    Top             =   1785
  16.    Width           =   3915
  17.    Begin CommandButton cmdCancel 
  18.       Cancel          =   -1  'True
  19.       Caption         =   "Cancel"
  20.       Height          =   375
  21.       Left            =   2520
  22.       TabIndex        =   2
  23.       Top             =   1080
  24.       Width           =   1095
  25.    End
  26.    Begin CommandButton cmdOK 
  27.       Caption         =   "OK"
  28.       Default         =   -1  'True
  29.       Height          =   375
  30.       Left            =   2520
  31.       TabIndex        =   1
  32.       Top             =   600
  33.       Width           =   1095
  34.    End
  35.    Begin ComboBox Combo1 
  36.       Height          =   300
  37.       Left            =   240
  38.       TabIndex        =   0
  39.       Text            =   "Combo1"
  40.       Top             =   120
  41.       Width           =   2535
  42.    End
  43.    Begin Label Label1 
  44.       Caption         =   "Press Return key to trigger OK button, or Escape key to trigger Cancel button."
  45.       Height          =   975
  46.       Left            =   240
  47.       TabIndex        =   3
  48.       Top             =   600
  49.       Width           =   2055
  50.    End
  51. Option Explicit
  52. Sub cmdCancel_Click ()
  53.     Unload Form2
  54. End Sub
  55. Sub cmdOK_Click ()
  56.     Unload Form2
  57. End Sub
  58.